Fox's Git Mirrors
.github/workflows/update-cars-docs.yml 4634ef32c61cd88e729ef26fef53fc58c705aef3 (4634ef32) Text, 613 B
name: Update CARS.md
on:
schedule:
- cron: '0 8 * * *' # 12am PST (8am UTC)
workflow_dispatch:
jobs:
update-cars:
runs-on: ubuntu-24.04
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- name: Generate Car Docs
run: |
pip install -e .
python -m pip install jinja2==3.1.4
python opendbc/car/docs.py
- uses: stefanzweifel/git-auto-commit-action@8621497c8c39c72f3e2a999a26b4ca1b5058a842
with:
commit_message: 'docs: Scheduled auto-update CARS.md'
file_pattern: 'docs/CARS.md'
Served by rngit 1.5.2 - Generated in 0.02s